/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box; /* Garante que padding e border não aumentem o tamanho do elemento */
  margin: 0;
  padding: 0;
}

body, #canvas {
  background-color: #022001; /* Essa cor deve ser a mesma do atributo cor no objeto tela.js */
  width: 100%;
  height: 100vh;  /* Opcionalmente, defina a altura, por exemplo, para manter uma proporção ou ser responsiva */
}

.btnJogar{
    background-color: white;
    border-radius: 10px;
    color: green;
    width:25%;
    height: 35px;
    border: none;
    margin: 20px 0px;
    font-size:20px;
    font-family:fantasy;
    filter:none;
}

.divCobra {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    top: 20%;
    background-color: rgba(0, 0, 0, 0.0); 
    width: 100%;
    filter:none;
}
.imgCobra{
    width: 300px;
    filter:none;
}
.telaInvisivel{
    display: none;
}

.blur-fundo{
    filter: blur(5px);
    pointer-events: none; 
}

